home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / BDTTABLE.PAK / TABLE.RC < prev    next >
Text File  |  1997-05-06  |  913b  |  41 lines

  1. // test.rc
  2. //............................................................................
  3. // includes
  4.  
  5. #if !defined (WORKSHOP_INVOKED)
  6. #include <windows.h>
  7. #endif
  8. #include "resource.h"
  9.  
  10. //............................................................................
  11. // Icons
  12.  
  13. IDI_MAIN ICON table.ico
  14.  
  15. //............................................................................
  16. // Menus
  17.  
  18. IDM_MAIN MENU
  19. {
  20.     MENUITEM " |< ", IDM_NAV_FIRST
  21.     MENUITEM " << ", IDM_NAV_PRIORSET
  22.     MENUITEM " <  ", IDM_NAV_PRIOR
  23.     MENUITEM "  > ", IDM_NAV_NEXT
  24.     MENUITEM " >> ", IDM_NAV_NEXTSET
  25.     MENUITEM " >| ", IDM_NAV_LAST
  26. }
  27.  
  28. //............................................................................
  29. // Strings
  30.  
  31. STRINGTABLE
  32. {
  33. #ifdef __FLAT__
  34.     IDS_MAINTITLE,    "Table 32"
  35. #else
  36.     IDS_MAINTITLE,    "Table 16"
  37. #endif
  38. }
  39.  
  40. //............................................................................
  41.